home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / 1691 / LOTTO < prev    next >
Text File  |  1990-09-11  |  1KB  |  29 lines

  1. /*
  2.  * Sample source file for "chaos" -- a "a lotto" program tuned for
  3.  * playing Oregon Megabucks and Lotto America. This can easily be
  4.  * tuned to play another other state lottery.  How to use: type
  5.  * "chaos lotto", and select "a" (for "again") as many times as
  6.  * you like, until a set of numbers comes up that you like.  These
  7.  * numbers are the actual numbers that have come up in the lottery
  8.  * lately -- by adding each weeks numbers onto this list, you can
  9.  * customize this to any state lottery so that it prefers the most
  10.  * likely numbers for that lottery.
  11.  */
  12. winners : {Picking 6 out of 44 numbers: $m1 $m2 $m3 $m4 $m5 $m6
  13. Picking 6 out of 54 numbers: $l1 $l2 $l3 $l4 $l5 $l6}
  14.     ;
  15.  
  16. m1:  {4} | {2} | {6} | {2} | {6} | {5} | {2} | {6} ;
  17. m2:  {11} | {12} | {7} | {11} | {12} | {10} | {24} | {7} ;
  18. m3:  {12} | {24} | {27} | {20} | {14} | {22} | {30} | {15} ;
  19. m4:  {22} | {28} | {34} | {26} | {15} | {25} | {36} | {30} ;
  20. m5:  {27} | {36} | {38} | {31} | {39} | {37} | {41} | {31} ;
  21. m6:  {40} | {39} | {40} | {41} | {42} | {41} | {43} | {35} ;
  22.  
  23. l1:  {3} | {7} | {1} | {7} | {12} | {4} | {12};
  24. l2:  {17} | {14} | {8} | {18} | {17} | {13} | {16};
  25. l3:  {21} | {27} | {25} | {19} | {22} | {18} | {33};
  26. l4:  {24} | {43} | {28} | {43} | {40} | {21} | {41};
  27. l5:  {39} | {48} | {43} | {45} | {47} | {48} | {44};
  28. l6:  {47} | {51} | {54} | {51} | {48} | {42} | {54};
  29.